home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sprite 1984 - 1993
/
Sprite 1984 - 1993.iso
/
src
/
lib
/
c
/
etc
/
RCS
/
popen.c,v
< prev
next >
Wrap
Text File
|
1991-05-29
|
3KB
|
199 lines
head 1.4;
branch ;
access ;
symbols ;
locks ; strict;
comment @ * @;
1.4
date 91.05.28.23.07.39; author jhh; state Exp;
branches ;
next 1.3;
1.3
date 88.07.29.17.49.52; author ouster; state Exp;
branches ;
next 1.2;
1.2
date 88.07.28.17.48.05; author ouster; state Exp;
branches ;
next 1.1;
1.1
date 88.07.11.10.57.20; author ouster; state Exp;
branches ;
next ;
desc
@@
1.4
log
@children were lost if they exited while you where waiting for a
different child
@
text
@/*
* Copyright (c) 1980 Regents of the University of California.
* All rights reserved. The Berkeley software License Agreement
* specifies the terms and conditions for redistribution.
*/
#if defined(LIBC_SCCS) && !defined(lint)
static char sccsid[] = "@@(#)popen.c 5.5 (Berkeley) 9/30/87";
#endif LIBC_SCCS and not lint
#include <stdio.h>
#include <signal.h>
#include <sys/wait.h>
#define tst(a,b) (*mode == 'r'? (b) : (a))
#define RDR 0
#define WTR 1
extern char *malloc();
static int *popen_pid;
static int nfiles;
static int *child_status;
FILE *
popen(cmd,mode)
char *cmd;
char *mode;
{
int p[2];
int myside, hisside, pid;
if (nfiles <= 0)
nfiles = getdtablesize();
if (popen_pid == NULL) {
popen_pid = (int *)malloc((unsigned)
(nfiles * sizeof *popen_pid));
if (popen_pid == NULL)
return (NULL);
child_status = (int *)malloc((unsigned)
(nfiles * sizeof *child_status));
if (child_status == NULL)
return (NULL);
for (pid = 0; pid < nfiles; pid++) {
popen_pid[pid] = -1;
child_status[pid] = -1;
}
}
if (pipe(p) < 0)
return (NULL);
myside = tst(p[WTR], p[RDR]);
hisside = tst(p[RDR], p[WTR]);
if ((pid = vfork()) == 0) {
/* myside and hisside reverse roles in child */
close(myside);
if (hisside != tst(0, 1)) {
dup2(hisside, tst(0, 1));
close(hisside);
}
execl("/bin/sh", "sh", "-c", cmd, (char *)NULL);
_exit(127);
}
if (pid == -1) {
close(myside);
close(hisside);
return (NULL);
}
popen_pid[myside] = pid;
close(hisside);
return (fdopen(myside, mode));
}
pclose(ptr)
FILE *ptr;
{
int omask;
int child, pid, status;
int i;
int file;
file = fileno(ptr);
if (popen_pid != NULL) {
child = popen_pid[file];
popen_pid[file] = -1;
} else {
child = -1;
}
fclose(ptr);
if (child == -1)
return (-1);
if (child_status[file] != -1) {
status = child_status[file];
child_status[file] = -1;
return (status);
}
omask = sigblock(sigmask(SIGINT)|sigmask(SIGQUIT)|sigmask(SIGHUP));
while ((pid = wait((union wait *) &status)) != child && pid != -1) {
for (i = 0; i < nfiles; i++) {
if (popen_pid[i] == pid) {
child_status[i] = status;
break;
}
}
}
(void) sigsetmask(omask);
return (pid == -1 ? -1 : status);
}
@
1.3
log
@Lint.
@
text
@d23 1
d25 1
d41 5
a45 1
for (pid = 0; pid < nfiles; pid++)
d47 2
d79 2
d82 7
a88 2
child = popen_pid[fileno(ptr)];
popen_pid[fileno(ptr)] = -1;
d92 5
d98 8
a105 2
while ((pid = wait((union wait *) &status)) != child && pid != -1)
;
@
1.2
log
@Lint.
@
text
@d13 1
@
1.1
log
@Initial revision
@
text
@d34 2
a35 1
popen_pid = (int *)malloc(nfiles * sizeof *popen_pid);
d68 1
a68 1
long omask;
d77 1
a77 1
while ((pid = wait(&status)) != child && pid != -1)
@